Conversation
…nt-server Agent-Logs-Url: https://github.com/microsoft/TypeAgent/sessions/c651d7c9-41a2-4fca-a2a2-be227e8dea46 Co-authored-by: robgruen <25374553+robgruen@users.noreply.github.com>
Contributor
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
…TypeAgent into dev/robgruen/backport
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Agent Server: User Identity Resolution
UserIdentitytype andDefaultUserIdentityconstant to the protocol for communicating the OS/Azure AD user identity to clients, and exposed agetUserIdentityRPC method. The server now resolves the user identity with the following precedence: environment variable override, Azure AD claims, then OS username. This enables better user display in clients that can't do Office SSO. (ts/packages/agentServer/protocol/src/protocol.ts,ts/packages/agentServer/protocol/src/index.ts,ts/packages/agentServer/server/src/server.ts,ts/packages/agentServer/server/package.json) [1] [2] [3] [4] [5] [6] [7]Dispatcher: Session and Reasoning Improvements
pathNavigationfrom"throw"to"fallback-to-name", allowing unresolvable entity paths to fall back to the entity name with a debug log, instead of failing the conversation. (ts/packages/dispatcher/dispatcher/src/context/session.ts,ts/packages/dispatcher/dispatcher/src/execute/pendingActions.ts) [1] [2]ts/packages/dispatcher/dispatcher/src/context/system/handlers/historyCommandHandler.ts,ts/packages/dispatcher/dispatcher/src/reasoning/copilot.ts) [1] [2] [3] [4] [5] [6]Onboarding Agent Testing: Custom Directory Support
ts/packages/agents/onboarding/src/testing/runTests.ts,ts/packages/agents/onboarding/src/testing/testingHandler.ts) [1] [2] [3]Action Schema Translation: Parameter Leakage Handling
userRequest) from action translation output to prevent validation errors when LLMs leak parameters between schemas. (ts/packages/dispatcher/dispatcher/src/translation/actionSchemaJsonTranslator.ts) [1] [2] [3]These changes collectively improve user experience, session reliability, and test infrastructure robustness.